-
Notifications
You must be signed in to change notification settings - Fork 260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
helm: configurable Service annotations #1646
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR @pznamensky
Nice work
Left a small comment in the review
helm/robusta/values.yaml
Outdated
@@ -35,6 +35,11 @@ globalConfig: | |||
custom_annotations: [] | |||
custom_severity_map: {} | |||
|
|||
# k8s service config | |||
service: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you think we can move this into the runner
section?
Since these annotations are for the runner
service, I think it might belong there
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
runner
section indeed seems to be a better place for that.
Thanks for taking a look!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice work
Thanks for the contribution @pznamensky !
Hi guys,
In our infrastructure, we need to add custom annotations to k8s services in order to configure load balancers. Currently we have to patch Service resource after installing Robusta which is not very convenient.
As it seems to be a common case, I think it would be worthwhile to add the corresponding helm values into the chart.